home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / CONTENTS / BONUS / FULL / wikiwriter / setup-ww2x.exe / {app} / htmltut / Elements.db < prev    next >
Text File  |  2002-07-01  |  689b  |  19 lines

  1. @@inc HTMLToc
  2. == Elements
  3.  
  4. At the top of your page, you should now have
  5.  
  6. <pre>
  7.    <html>
  8.    <head>
  9. </pre>
  10.  
  11. An "element" in HTML is a container for something. Container elements have a tag to show where the container starts, and another to show where the container ends. The "end" tag for a container is like the start tag, except it begins with "</" instead of just "<". So, the end tag for "head" looks like this --
  12.  
  13. <pre>
  14.    </head>
  15. </pre>
  16.  
  17. On your page, put the end tag for "head" on the line just below the start tag for "head". Then put the end tag for "html" on the next line, below the end tag for "head". [[b Go to ((Head and Title))]]
  18.  
  19.